home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / TUNEIN / TURNON / SHARED.DIR / 00545_Script_545 < prev    next >
Text File  |  1995-05-31  |  618b  |  18 lines

  1. on TimeLineInAWindow
  2.   global TimeLineWindow
  3.   if objectP(TimeLineWindow) then
  4.     forget TimeLineWindow
  5.   end if
  6.   set horzOrigin to the stageleft + 24
  7.   set vertOrigin to the stageTop + 60
  8.   set myWindowRect to rect(horzOrigin,vertOrigin, horzOrigin + 416, vertOrigin + 85)
  9.   set TimeLineWindow to window "Turn On Timeline"
  10.   set the rect of TimeLineWindow to myWindowRect
  11.   set the filename of TimeLineWindow to "@\TIME\TIMELINE.DIR"
  12.   set the titleVisible of TimeLineWindow to true
  13.   set the modal of TimeLineWindow to false
  14.   set the windowtype of TimeLineWindow to 16
  15.   open TimeLineWindow
  16. end
  17.  
  18.